new アクション
お出かけアプリ places の new アクション
HTTP メソッドは GET
まだデータを投げないので〜
code:app/controllers/places_controller.rb
def new
@place = Place.new
end
Place.new で Place クラスのインスタンスを作る
引数がないのでデータは空。
@つきは
インスタンス変数
。 View へ渡せる。
views/places/
new.html
へ処理が進む
new.html には パーシャルの
_form.html.erb
が使われている。
#Railsの教科書を読んだ